home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7004.txt < prev    next >
Text File  |  1994-10-06  |  1KB  |  69 lines

  1. Sets symbol s to be active.
  2.  
  3. SetActSymbol (s : STRING);
  4.  
  5. Sets the current constrain mode.
  6.  
  7. SetConstrain(s : STRING);
  8.  
  9. Sets the current tool from the palette.
  10.  
  11. SetTool(theTool : INTEGER);
  12.  
  13. Sets one of the standard units in MiniCad+
  14.  
  15. Units(StandardUnit : INTEGER;  DisplayAccuracy : LONGINT);
  16.  
  17. Sets a customized units in MiniCad+
  18.  
  19. SetUnits(Fraction,DisplayAccuracy : LONGINT;  Format : INTEGER;  UnitsPerInch : REAL;  UnitMark,SqrUnitMark : STRING);
  20.  
  21. Activates the snap options :
  22. TRUE = on
  23. FALSE = off
  24.  
  25. Snap(Grid,Object,Locus : BOOLEAN);
  26.  
  27. Sets the scale of the objects :
  28. 1/2 scale = 2
  29. 1/4 scale = 4
  30.  
  31. SetScale(ActualSize : REAL);
  32.  
  33. Moves the origin to a new position on the drawing
  34.  
  35. SetOrigin(X,Y : REAL);
  36.  
  37. Redraws screen
  38.  
  39. ReDraw;
  40.  
  41. Sets the smallest mouse increament
  42.  
  43. PenGrid(Distance : REAL);
  44.  
  45. Sets the distance between the gridlines on the screen
  46.  
  47. GridLines(Distance : REAL);
  48.  
  49. Sets the overall drawing sheet area of a MiniCad file
  50.  
  51. DrwSize(Rows,Columns : INTEGER);
  52.  
  53. Sets distance between the double line function
  54.  
  55. DoubLines(Distance : REAL);
  56.  
  57. Must be called before using variable angles
  58.  
  59. AngleVar;
  60.  
  61. Sets the point-designation method to relative
  62.  
  63. Relative;
  64.  
  65. Sets the point-designation method to absolute
  66.  
  67. Absolute;
  68.  
  69.